home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
You're the Director
/
You're The Director.iso
/
mac
/
MACF
/
MGER.DIR
/
00366_Script_366
< prev
Wrap
Text File
|
1995-10-10
|
650b
|
30 lines
on enterFrame
global gCurrentSprite
-- set the keyDownScript to "if the key = RETURN then set the editableText of ¼
-- sprite gCurrentSprite to FALSE"
set the keyDownScript to "if the key = RETURN then RunOff"
if length(field "name")>15 then
set gCurrentSprite to 3
RunOff
end if
if length(field "movie")>15 then
set gCurrentSprite to 4
RunOff
end if
end
on mouseDown
global gCurrentSprite
if rollOver(3) then
set gCurrentSprite = 3
else if rollOver(4) then
set gCurrentSprite = 4
end if
end
on exitFrame
global gStart,gCurrentSprite
set gStart = TRUE
end